home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1998 November / Freeware November 1998.img / dist / fw_emacs.idb / usr / freeware / info / gnus-7.z / gnus-7 (.txt)
GNU Info File  |  1998-10-27  |  50KB  |  958 lines

  1. This is Info file ../info/gnus, produced by Makeinfo-1.63 from the
  2. input file gnus.texi.
  3.    This file documents Gnus, the GNU Emacs newsreader.
  4.    Copyright (C) 1995,96 Free Software Foundation, Inc.
  5.    Permission is granted to make and distribute verbatim copies of this
  6. manual provided the copyright notice and this permission notice are
  7. preserved on all copies.
  8.    Permission is granted to copy and distribute modified versions of
  9. this manual under the conditions for verbatim copying, provided also
  10. that the entire resulting derived work is distributed under the terms
  11. of a permission notice identical to this one.
  12.    Permission is granted to copy and distribute translations of this
  13. manual into another language, under the above conditions for modified
  14. versions.
  15. File: gnus,  Node: Process/Prefix,  Next: Interactive,  Up: Various
  16. Process/Prefix
  17. ==============
  18.    Many functions, among them functions for moving, decoding and saving
  19. articles, use what is known as the "Process/Prefix convention".
  20.    This is a method for figuring out what articles that the user wants
  21. the command to be performed on.
  22.    It goes like this:
  23.    If the numeric prefix is N, perform the operation on the next N
  24. articles, starting with the current one.  If the numeric prefix is
  25. negative, perform the operation on the previous N articles, starting
  26. with the current one.
  27.    If `transient-mark-mode' in non-`nil' and the region is active, all
  28. articles in the region will be worked upon.
  29.    If there is no numeric prefix, but some articles are marked with the
  30. process mark, perform the operation on the articles that are marked with
  31. the process mark.
  32.    If there is neither a numeric prefix nor any articles marked with the
  33. process mark, just perform the operation on the current article.
  34.    Quite simple, really, but it needs to be made clear so that surprises
  35. are avoided.
  36.    One thing that seems to shock & horrify lots of people is that, for
  37. instance, `3 d' does exactly the same as `d' `d' `d'.  Since each `d'
  38. (which marks the current article as read) by default goes to the next
  39. unread article after marking, this means that `3 d' will mark the next
  40. three unread articles as read, no matter what the summary buffer looks
  41. like.  Set `gnus-summary-goto-unread' to `nil' for a more
  42. straightforward action.
  43. File: gnus,  Node: Interactive,  Next: Formatting Variables,  Prev: Process/Prefix,  Up: Various
  44. Interactive
  45. ===========
  46. `gnus-novice-user'
  47.      If this variable is non-`nil', you are either a newcomer to the
  48.      World of Usenet, or you are very cautious, which is a nice thing
  49.      to be, really.  You will be given questions of the type "Are you
  50.      sure you want to do this?" before doing anything dangerous.  This
  51.      is `t' by default.
  52. `gnus-expert-user'
  53.      If this variable is non-`nil', you will never ever be asked any
  54.      questions by Gnus.  It will simply assume you know what you're
  55.      doing, no matter how strange.
  56. `gnus-interactive-catchup'
  57.      Require confirmation before catching up a group if non-`nil'.  It
  58.      is `t' by default.
  59. `gnus-interactive-exit'
  60.      Require confirmation before exiting Gnus.  This variable is `t' by
  61.      default.
  62. File: gnus,  Node: Formatting Variables,  Next: Windows Configuration,  Prev: Interactive,  Up: Various
  63. Formatting Variables
  64. ====================
  65.    Throughout this manual you've probably noticed lots of variables that
  66. are called things like `gnus-group-line-format' and
  67. `gnus-summary-mode-line-format'.  These control how Gnus is to output
  68. lines in the various buffers.  There's quite a lot of them.
  69. Fortunately, they all use the same syntax, so there's not that much to
  70. be annoyed by.
  71.    Here's an example format spec (from the group buffer): `%M%S%5y:
  72. %(%g%)\n'.  We see that it is indeed extremely ugly, and that there are
  73. lots of percentages everywhere.
  74.    Each `%' element will be replaced by some string or other when the
  75. buffer in question is generated.  `%5y' means "insert the `y' spec, and
  76. pad with spaces to get a 5-character field".  Just like a normal format
  77. spec, almost.
  78.    You can also say `%6,4y', which means that the field will never be
  79. more than 6 characters wide and never less than 4 characters wide.
  80.    There are also specs for highlighting, and these are shared by all
  81. the format variables.  Text inside the `%(' and `%)' specifiers will
  82. get the special `mouse-face' property set, which means that it will be
  83. highlighted (with `gnus-mouse-face') when you put the mouse pointer
  84. over it.
  85.    Text inside the `%[' and `%]' specifiers will have their normal
  86. faces set using `gnus-face-0', which is `bold' by default.  If you say
  87. `%1[' instead, you'll get `gnus-face-1' instead, and so on.  Create as
  88. many faces as you wish.  The same goes for the `mouse-face' specs--you
  89. can say `%3(hello%)' to have `hello' mouse-highlighted with
  90. `gnus-mouse-face-3'.
  91.    Here's an alternative recipe for the group buffer:
  92.      ;; Create three face types.
  93.      (setq gnus-face-1 'bold)
  94.      (setq gnus-face-3 'italic)
  95.      
  96.      ;; We want the article count to be in
  97.      ;; a bold and green face.  So we create
  98.      ;; a new face called `my-green-bold'.
  99.      (copy-face 'bold 'my-green-bold)
  100.      ;; Set the color.
  101.      (set-face-foreground 'my-green-bold "ForestGreen")
  102.      (setq gnus-face-2 'my-green-bold)
  103.      
  104.      ;; Set the new & fancy format.
  105.      (setq gnus-group-line-format
  106.            "%M%S%3{%5y%}%2[:%] %(%1{%g%}%)\n")
  107.    I'm sure you'll be able to use this scheme to create totally
  108. unreadable and extremely vulgar displays.  Have fun!
  109.    Currently Gnus uses the following formatting variables:
  110. `gnus-group-line-format', `gnus-summary-line-format',
  111. `gnus-server-line-format', `gnus-topic-line-format',
  112. `gnus-group-mode-line-format', `gnus-summary-mode-line-format',
  113. `gnus-article-mode-line-format', `gnus-server-mode-line-format'.
  114.    Note that the `%(' specs (and friends) do not make any sense on the
  115. mode-line variables.
  116.    All these format variables can also be arbitrary elisp forms.  In
  117. that case, they will be `eval'ed to insert the required lines.
  118.    Gnus includes a command to help you while creating your own format
  119. specs.  `M-x gnus-update-format' will `eval' the current form, update
  120. the spec in question and pop you to a buffer where you can examine the
  121. resulting lisp code to be run to generate the line.
  122. File: gnus,  Node: Windows Configuration,  Next: Compilation,  Prev: Formatting Variables,  Up: Various
  123. Windows Configuration
  124. =====================
  125.    No, there's nothing here about X, so be quiet.
  126.    If `gnus-use-full-window' non-`nil', Gnus will delete all other
  127. windows and occupy the entire Emacs screen by itself.  It is `t' by
  128. default.
  129.    `gnus-buffer-configuration' describes how much space each Gnus
  130. buffer should be given.  Here's an excerpt of this variable:
  131.      ((group (vertical 1.0 (group 1.0 point)
  132.                            (if gnus-carpal (group-carpal 4))))
  133.       (article (vertical 1.0 (summary 0.25 point)
  134.                              (article 1.0))))
  135.    This is an alist.  The "key" is a symbol that names some action or
  136. other.  For instance, when displaying the group buffer, the window
  137. configuration function will use `group' as the key.  A full list of
  138. possible names is listed below.
  139.    The "value" (i. e., the "split") says how much space each buffer
  140. should occupy.  To take the `article' split as an example -
  141.      (article (vertical 1.0 (summary 0.25 point)
  142.                             (article 1.0)))
  143.    This "split" says that the summary buffer should occupy 25% of upper
  144. half of the screen, and that it is placed over the article buffer.  As
  145. you may have noticed, 100% + 25% is actually 125% (yup, I saw y'all
  146. reaching for that calculator there).  However, the special number `1.0'
  147. is used to signal that this buffer should soak up all the rest of the
  148. space available after the rest of the buffers have taken whatever they
  149. need.  There should be only one buffer with the `1.0' size spec per
  150. split.
  151.    Point will be put in the buffer that has the optional third element
  152. `point'.
  153.    Here's a more complicated example:
  154.      (article (vertical 1.0 (group 4)
  155.                             (summary 0.25 point)
  156.                             (if gnus-carpal (summary-carpal 4))
  157.                             (article 1.0)))
  158.    If the size spec is an integer instead of a floating point number,
  159. then that number will be used to say how many lines a buffer should
  160. occupy, not a percentage.
  161.    If the "split" looks like something that can be `eval'ed (to be
  162. precise--if the `car' of the split is a function or a subr), this split
  163. will be `eval'ed.  If the result is non-`nil', it will be used as a
  164. split.  This means that there will be three buffers if `gnus-carpal' is
  165. `nil', and four buffers if `gnus-carpal' is non-`nil'.
  166.    Not complicated enough for you?  Well, try this on for size:
  167.      (article (horizontal 1.0
  168.                   (vertical 0.5
  169.                       (group 1.0)
  170.                       (gnus-carpal 4))
  171.                   (vertical 1.0
  172.                       (summary 0.25 point)
  173.                       (summary-carpal 4)
  174.                       (article 1.0))))
  175.    Whoops.  Two buffers with the mystery 100% tag.  And what's that
  176. `horizontal' thingie?
  177.    If the first element in one of the split is `horizontal', Gnus will
  178. split the window horizontally, giving you two windows side-by-side.
  179. Inside each of these strips you may carry on all you like in the normal
  180. fashion.  The number following `horizontal' says what percentage of the
  181. screen is to be given to this strip.
  182.    For each split, there *must* be one element that has the 100% tag.
  183. The splitting is never accurate, and this buffer will eat any leftover
  184. lines from the splits.
  185.    To be slightly more formal, here's a definition of what a legal split
  186. may look like:
  187.      split       = frame | horizontal | vertical | buffer | form
  188.      frame       = "(frame " size *split ")"
  189.      horizontal  = "(horizontal " size *split ")"
  190.      vertical    = "(vertical " size *split ")"
  191.      buffer      = "(" buffer-name " " size *[ "point" ] ")"
  192.      size        = number | frame-params
  193.      buffer-name = group | article | summary ...
  194.    The limitations are that the `frame' split can only appear as the
  195. top-level split.  FORM should be an Emacs Lisp form that should return
  196. a valid split.  We see that each split is fully recursive, and may
  197. contain any number of `vertical' and `horizontal' splits.
  198.    Finding the right sizes can be a bit complicated.  No window may be
  199. less than `gnus-window-min-height' (default 2) characters high, and all
  200. windows must be at least `gnus-window-min-width' (default 1) characters
  201. wide.  Gnus will try to enforce this before applying the splits.  If
  202. you want to use the normal Emacs window width/height limit, you can
  203. just set these two variables to `nil'.
  204.    If you're not familiar with Emacs terminology, `horizontal' and
  205. `vertical' splits may work the opposite way of what you'd expect.
  206. Windows inside a `horizontal' split are shown side-by-side, and windows
  207. within a `vertical' split are shown above each other.
  208.    If you want to experiment with window placement, a good tip is to
  209. call `gnus-configure-frame' directly with a split.  This is the function
  210. that does all the real work when splitting buffers.  Below is a pretty
  211. nonsensical configuration with 5 windows; two for the group buffer and
  212. three for the article buffer.  (I said it was nonsensical.)  If you
  213. `eval' the statement below, you can get an idea of how that would look
  214. straight away, without going through the normal Gnus channels.  Play
  215. with it until you're satisfied, and then use `gnus-add-configuration'
  216. to add your new creation to the buffer configuration list.
  217.      (gnus-configure-frame
  218.       '(horizontal 1.0
  219.          (vertical 10
  220.            (group 1.0)
  221.            (article 0.3 point))
  222.          (vertical 1.0
  223.            (article 1.0)
  224.            (horizontal 4
  225.              (group 1.0)
  226.              (article 10)))))
  227.    You might want to have several frames as well.  No prob--just use the
  228. `frame' split:
  229.      (gnus-configure-frame
  230.       '(frame 1.0
  231.               (vertical 1.0
  232.                         (summary 0.25 point)
  233.                         (article 1.0))
  234.               (vertical ((height . 5) (width . 15)
  235.                          (user-position . t)
  236.                          (left . -1) (top . 1))
  237.                         (picon 1.0))))
  238.    This split will result in the familiar summary/article window
  239. configuration in the first (or "main") frame, while a small additional
  240. frame will be created where picons will be shown.  As you can see,
  241. instead of the normal `1.0' top-level spec, each additional split
  242. should have a frame parameter alist as the size spec.  *Note Frame
  243. Parameters: (elisp)Frame Parameters.
  244.    Here's a list of all possible keys for `gnus-buffer-configuration':
  245.    `group', `summary', `article', `server', `browse', `group-mail',
  246. `summary-mail', `summary-reply', `info', `summary-faq', `edit-group',
  247. `edit-server', `reply', `reply-yank', `followup', `followup-yank',
  248. `edit-score'.
  249.    Since the `gnus-buffer-configuration' variable is so long and
  250. complicated, there's a function you can use to ease changing the config
  251. of a single setting: `gnus-add-configuration'.  If, for instance, you
  252. want to change the `article' setting, you could say:
  253.      (gnus-add-configuration
  254.       '(article (vertical 1.0
  255.                     (group 4)
  256.                     (summary .25 point)
  257.                     (article 1.0))))
  258.    You'd typically stick these `gnus-add-configuration' calls in your
  259. `.gnus' file or in some startup hook - they should be run after Gnus
  260. has been loaded.
  261. File: gnus,  Node: Compilation,  Next: Mode Lines,  Prev: Windows Configuration,  Up: Various
  262. Compilation
  263. ===========
  264.    Remember all those line format specification variables?
  265. `gnus-summary-line-format', `gnus-group-line-format', and so on.  Now,
  266. Gnus will of course heed whatever these variables are, but,
  267. unfortunately, changing them will mean a quite significant slow-down.
  268. (The default values of these variables have byte-compiled functions
  269. associated with them, while the user-generated versions do not, of
  270. course.)
  271.    To help with this, you can run `M-x gnus-compile' after you've
  272. fiddled around with the variables and feel that you're (kind of)
  273. satisfied.  This will result in the new specs being byte-compiled, and
  274. you'll get top speed again.
  275. File: gnus,  Node: Mode Lines,  Next: Highlighting and Menus,  Prev: Compilation,  Up: Various
  276. Mode Lines
  277. ==========
  278.    `gnus-updated-mode-lines' says what buffers should keep their mode
  279. lines updated.  It is a list of symbols.  Supported symbols include
  280. `group', `article', `summary', `server', `browse', and `tree'.  If the
  281. corresponding symbol is present, Gnus will keep that mode line updated
  282. with information that may be pertinent.  If this variable is `nil',
  283. screen refresh may be quicker.
  284.    By default, Gnus displays information on the current article in the
  285. mode lines of the summary and article buffers.  The information Gnus
  286. wishes to display (eg. the subject of the article) is often longer than
  287. the mode lines, and therefore have to be cut off at some point.  The
  288. `gnus-mode-non-string-length' variable says how long the other elements
  289. on the line is (i.e., the non-info part).  If you put additional
  290. elements on the mode line (eg. a clock), you should modify this
  291. variable:
  292.      (add-hook 'display-time-hook
  293.                (lambda () (setq gnus-mode-non-string-length
  294.                                 (+ 21
  295.                                    (if line-number-mode 5 0)
  296.                                    (if column-number-mode 4 0)
  297.                                    (length display-time-string)))))
  298.    If this variable is `nil' (which is the default), the mode line
  299. strings won't be chopped off, and they won't be padded either.
  300. File: gnus,  Node: Highlighting and Menus,  Next: Buttons,  Prev: Mode Lines,  Up: Various
  301. Highlighting and Menus
  302. ======================
  303.    The `gnus-visual' variable controls most of the prettifying Gnus
  304. aspects.  If `nil', Gnus won't attempt to create menus or use fancy
  305. colors or fonts.  This will also inhibit loading the `gnus-vis.el' file.
  306.    This variable can be a list of visual properties that are enabled.
  307. The following elements are legal, and are all included by default:
  308. `group-highlight'
  309.      Do highlights in the group buffer.
  310. `summary-highlight'
  311.      Do highlights in the summary buffer.
  312. `article-highlight'
  313.      Do highlights in the article buffer.
  314. `highlight'
  315.      Turn on highlighting in all buffers.
  316. `group-menu'
  317.      Create menus in the group buffer.
  318. `summary-menu'
  319.      Create menus in the summary buffers.
  320. `article-menu'
  321.      Create menus in the article buffer.
  322. `browse-menu'
  323.      Create menus in the browse buffer.
  324. `server-menu'
  325.      Create menus in the server buffer.
  326. `score-menu'
  327.      Create menus in the score buffers.
  328. `menu'
  329.      Create menus in all buffers.
  330.    So if you only want highlighting in the article buffer and menus in
  331. all buffers, you could say something like:
  332.      (setq gnus-visual '(article-highlight menu))
  333.    If you want only highlighting and no menus whatsoever, you'd say:
  334.      (setq gnus-visual '(highlight))
  335.    If `gnus-visual' is `t', highlighting and menus will be used in all
  336. Gnus buffers.
  337.    Other general variables that influence the look of all buffers
  338. include:
  339. `gnus-mouse-face'
  340.      This is the face (i.e., font) used for mouse highlighting in Gnus.
  341.      No mouse highlights will be done if `gnus-visual' is `nil'.
  342. `gnus-display-type'
  343.      This variable is symbol indicating the display type Emacs is
  344.      running under.  The symbol should be one of `color', `grayscale' or
  345.      `mono'.  If Gnus guesses this display attribute wrongly, either set
  346.      this variable in your `~/.emacs' or set the resource
  347.      `Emacs.displayType' in your `~/.Xdefaults'.
  348. `gnus-background-mode'
  349.      This is a symbol indicating the Emacs background brightness.  The
  350.      symbol should be one of `light' or `dark'.  If Gnus guesses this
  351.      frame attribute wrongly, either set this variable in your
  352.      `~/.emacs' or set the resource `Emacs.backgroundMode' in your
  353.      `~/.Xdefaults'.  `gnus-display-type'.
  354.    There are hooks associated with the creation of all the different
  355. menus:
  356. `gnus-article-menu-hook'
  357.      Hook called after creating the article mode menu.
  358. `gnus-group-menu-hook'
  359.      Hook called after creating the group mode menu.
  360. `gnus-summary-menu-hook'
  361.      Hook called after creating the summary mode menu.
  362. `gnus-server-menu-hook'
  363.      Hook called after creating the server mode menu.
  364. `gnus-browse-menu-hook'
  365.      Hook called after creating the browse mode menu.
  366. `gnus-score-menu-hook'
  367.      Hook called after creating the score mode menu.
  368. File: gnus,  Node: Buttons,  Next: Daemons,  Prev: Highlighting and Menus,  Up: Various
  369. Buttons
  370. =======
  371.    Those new-fangled "mouse" contraptions is very popular with the
  372. young, hep kids who don't want to learn the proper way to do things
  373. these days.  Why, I remember way back in the summer of '89, when I was
  374. using Emacs on a Tops 20 system.  Three hundred users on one single
  375. machine, and every user was running Simula compilers.  Bah!
  376.    Right.
  377.    Well, you can make Gnus display bufferfuls of buttons you can click
  378. to do anything by setting `gnus-carpal' to `t'.  Pretty simple, really.
  379. Tell the chiropractor I sent you.
  380. `gnus-carpal-mode-hook'
  381.      Hook run in all carpal mode buffers.
  382. `gnus-carpal-button-face'
  383.      Face used on buttons.
  384. `gnus-carpal-header-face'
  385.      Face used on carpal buffer headers.
  386. `gnus-carpal-group-buffer-buttons'
  387.      Buttons in the group buffer.
  388. `gnus-carpal-summary-buffer-buttons'
  389.      Buttons in the summary buffer.
  390. `gnus-carpal-server-buffer-buttons'
  391.      Buttons in the server buffer.
  392. `gnus-carpal-browse-buffer-buttons'
  393.      Buttons in the browse buffer.
  394.    All the `buttons' variables are lists.  The elements in these list
  395. is either a cons cell where the car contains a text to be displayed and
  396. the cdr contains a function symbol, or a simple string.
  397. File: gnus,  Node: Daemons,  Next: NoCeM,  Prev: Buttons,  Up: Various
  398. Daemons
  399. =======
  400.    Gnus, being larger than any program ever written (allegedly), does
  401. lots of strange stuff that you may wish to have done while you're not
  402. present.  For instance, you may want it to check for new mail once in a
  403. while.  Or you may want it to close down all connections to all servers
  404. when you leave Emacs idle.  And stuff like that.
  405.    Gnus will let you do stuff like that by defining various "handlers".
  406. Each handler consists of three elements:  A FUNCTION, a TIME, and an
  407. IDLE parameter.
  408.    Here's an example of a handler that closes connections when Emacs has
  409. been idle for thirty minutes:
  410.      (gnus-demon-close-connections nil 30)
  411.    Here's a handler that scans for PGP headers every hour when Emacs is
  412. idle:
  413.      (gnus-demon-scan-pgp 60 t)
  414.    This TIME parameter and than IDLE parameter works together in a
  415. strange, but wonderful fashion.  Basically, if IDLE is `nil', then the
  416. function will be called every TIME minutes.
  417.    If IDLE is `t', then the function will be called after TIME minutes
  418. only if Emacs is idle.  So if Emacs is never idle, the function will
  419. never be called.  But once Emacs goes idle, the function will be called
  420. every TIME minutes.
  421.    If IDLE is a number and TIME is a number, the function will be
  422. called every TIME minutes only when Emacs has been idle for IDLE
  423. minutes.
  424.    If IDLE is a number and TIME is `nil', the function will be called
  425. once every time Emacs has been idle for IDLE minutes.
  426.    And if TIME is a string, it should look like `07:31', and the
  427. function will then be called once every day somewhere near that time.
  428. Modified by the IDLE parameter, of course.
  429.    (When I say "minute" here, I really mean `gnus-demon-timestep'
  430. seconds.  This is `60' by default.  If you change that variable, all
  431. the timings in the handlers will be affected.)
  432.    To set the whole thing in motion, though, you have to set
  433. `gnus-use-demon' to `t'.
  434.    So, if you want to add a handler, you could put something like this
  435. in your `.gnus' file:
  436.      (gnus-demon-add-handler 'gnus-demon-close-connections nil 30)
  437.    Some ready-made functions to do this has been created:
  438. `gnus-demon-add-nocem', `gnus-demon-add-disconnection', and
  439. `gnus-demon-add-scanmail'.  Just put those functions in your `.gnus' if
  440. you want those abilities.
  441.    If you add handlers to `gnus-demon-handlers' directly, you should
  442. run `gnus-demon-init' to make the changes take hold.  To cancel all
  443. daemons, you can use the `gnus-demon-cancel' function.
  444.    Note that adding daemons can be pretty naughty if you overdo it.
  445. Adding functions that scan all news and mail from all servers every two
  446. seconds is a sure-fire way of getting booted off any respectable
  447. system.  So behave.
  448. File: gnus,  Node: NoCeM,  Next: Picons,  Prev: Daemons,  Up: Various
  449. NoCeM
  450. =====
  451.    "Spamming" is posting the same article lots and lots of times.
  452. Spamming is bad.  Spamming is evil.
  453.    Spamming is usually canceled within a day or so by various
  454. anti-spamming agencies.  These agencies usually also send out "NoCeM"
  455. messages.  NoCeM is pronounced "no see-'em", and means what the name
  456. implies--these are messages that make the offending articles, like, go
  457. away.
  458.    What use are these NoCeM messages if the articles are canceled
  459. anyway?  Some sites do not honor cancel messages and some sites just
  460. honor cancels from a select few people.  Then you may wish to make use
  461. of the NoCeM messages, which are distributed in the `alt.nocem.misc'
  462. newsgroup.
  463.    Gnus can read and parse the messages in this group automatically, and
  464. this will make spam disappear.
  465.    There are some variables to customize, of course:
  466. `gnus-use-nocem'
  467.      Set this variable to `t' to set the ball rolling.  It is `nil' by
  468.      default.
  469. `gnus-nocem-groups'
  470.      Gnus will look for NoCeM messages in the groups in this list.  The
  471.      default is `("alt.nocem.misc" "news.admin.net-abuse.announce")'.
  472. `gnus-nocem-issuers'
  473.      There are many people issuing NoCeM messages.  This list says what
  474.      people you want to listen to.  The default is `("Automoose-1"
  475.      "clewis@ferret.ocunix.on.ca;" "jem@xpat.com;"
  476.      "red@redpoll.mrfs.oh.us (Richard E. Depew)")'; fine, upstanding
  477.      citizens all of them.
  478.      Known despammers that you can put in this list include:
  479.     `clewis@ferret.ocunix.on.ca;'
  480.           Chris Lewis--Major Canadian despammer who has probably
  481.           canceled more usenet abuse than anybody else.
  482.     `Automoose-1'
  483.           The CancelMoose[tm] on autopilot.  The CancelMoose[tm] is
  484.           reputed to be Norwegian, and was the person(s) who invented
  485.           NoCeM.
  486.     `jem@xpat.com;'
  487.           Jem--Korean despammer who is getting very busy these days.
  488.     `red@redpoll.mrfs.oh.us (Richard E. Depew)'
  489.           Richard E. Depew--lone American despammer.  He mostly cancels
  490.           binary postings to non-binary groups and removes spews
  491.           (regurgitated articles).
  492.      You do not have to heed NoCeM messages from all these people--just
  493.      the ones you want to listen to.
  494. `gnus-nocem-directory'
  495.      This is where Gnus will store its NoCeM cache files.  The default
  496.      is `~/News/NoCeM/'.
  497. `gnus-nocem-expiry-wait'
  498.      The number of days before removing old NoCeM entries from the
  499.      cache.  The default is 15.  If you make it shorter Gnus will be
  500.      faster, but you might then see old spam.
  501. File: gnus,  Node: Picons,  Next: Various Various,  Prev: NoCeM,  Up: Various
  502. Picons
  503. ======
  504.    So...  You want to slow down your news reader even more!  This is a
  505. good way to do so.  Its also a great way to impress people staring over
  506. your shoulder as you read news.
  507. * Menu:
  508. * Picon Basics::           What are picons and How do I get them.
  509. * Picon Requirements::     Don't go further if you aren't using XEmacs.
  510. * Easy Picons::            Displaying Picons - the easy way.
  511. * Hard Picons::            The way you should do it.  You'll learn something.
  512. * Picon Configuration::    Other variables you can trash/tweak/munge/play with.
  513. File: gnus,  Node: Picon Basics,  Next: Picon Requirements,  Up: Picons
  514. Picon Basics
  515. ------------
  516.    What are Picons?  To quote directly from the Picons Web site
  517. (`http://www.cs.indiana.edu/picons/ftp/index.html'):
  518.      "Picons" is short for "personal icons".  They're small,
  519.      constrained images used to represent users and domains on the net,
  520.      organized into databases so that the appropriate image for a given
  521.      e-mail address can be found.  Besides users and domains, there are
  522.      picon databases for Usenet newsgroups and weather forecasts.  The
  523.      picons are in either monochrome `XBM' format or color `XPM' and
  524.      `GIF' formats.
  525.    Please see the above mentioned web site for instructions on obtaining
  526. and installing the picons databases, or the following ftp site:
  527. `http://www.cs.indiana.edu/picons/ftp/index.html'.
  528.    Gnus expects picons to be installed into a location pointed to by
  529. `gnus-picons-database'.
  530. File: gnus,  Node: Picon Requirements,  Next: Easy Picons,  Prev: Picon Basics,  Up: Picons
  531. Picon Requirements
  532. ------------------
  533.    To use have Gnus display Picons for you, you must be running XEmacs
  534. 19.13 or greater since all other versions of Emacs aren't yet able to
  535. display images.
  536.    Additionally, you must have `xpm' support compiled into XEmacs.
  537.    If you want to display faces from `X-Face' headers, you must have
  538. the `netpbm' utilities installed, or munge the
  539. `gnus-picons-convert-x-face' variable to use something else.
  540. File: gnus,  Node: Easy Picons,  Next: Hard Picons,  Prev: Picon Requirements,  Up: Picons
  541. Easy Picons
  542. -----------
  543.    To enable displaying picons, simply put the following line in your
  544. `~/.gnus' file and start Gnus.
  545.      (setq gnus-use-picons t)
  546.      (add-hook 'gnus-article-display-hook 'gnus-article-display-picons t)
  547.      (add-hook 'gnus-summary-prepare-hook 'gnus-group-display-picons t)
  548.      (add-hook 'gnus-article-display-hook 'gnus-picons-article-display-x-face)
  549. File: gnus,  Node: Hard Picons,  Next: Picon Configuration,  Prev: Easy Picons,  Up: Picons
  550. Hard Picons
  551. -----------
  552.    Gnus can display picons for you as you enter and leave groups and
  553. articles.  It knows how to interact with three sections of the picons
  554. database.  Namely, it can display the picons newsgroup pictures,
  555. author's face picture(s), and the authors domain.  To enable this
  556. feature, you need to first decide where to display them.
  557. `gnus-picons-display-where'
  558.      Where the picon images should be displayed.  It is `picons' by
  559.      default (which by default maps to the buffer `*Picons*').  Other
  560.      valid places could be `article', `summary', or `"*scratch*"' for
  561.      all I care.  Just make sure that you've made the buffer visible
  562.      using the standard Gnus window configuration routines - *Note
  563.      Windows Configuration::.
  564.    Note: If you set `gnus-use-picons' to `t', it will set up your
  565. window configuration for you to include the `picons' buffer.
  566.    Now that you've made that decision, you need to add the following
  567. functions to the appropriate hooks so these pictures will get displayed
  568. at the right time.
  569. `gnus-article-display-picons'
  570.      Looks up and display the picons for the author and the author's
  571.      domain in the `gnus-picons-display-where' buffer.  Should be added
  572.      to the `gnus-article-display-hook'.
  573. `gnus-group-display-picons'
  574.      Displays picons representing the current group.  This function
  575.      should be added to the `gnus-summary-prepare-hook' or to the
  576.      `gnus-article-display-hook' if `gnus-picons-display-where' is set
  577.      to `article'.
  578. `gnus-picons-article-display-x-face'
  579.      Decodes and displays the X-Face header if present.  This function
  580.      should be added to `gnus-article-display-hook'.
  581.    Note:  You must append them to the hook, so make sure to specify 't'
  582. to the append flag of `add-hook':
  583.      (add-hook 'gnus-article-display-hook 'gnus-article-display-picons t)
  584. File: gnus,  Node: Picon Configuration,  Prev: Hard Picons,  Up: Picons
  585. Picon Configuration
  586. -------------------
  587.    The following variables offer further control over how things are
  588. done, where things are located, and other useless stuff you really
  589. don't need to worry about.
  590. `gnus-picons-database'
  591.      The location of the picons database.  Should point to a directory
  592.      containing the `news', `domains', `users' (and so on)
  593.      subdirectories.  Defaults to `/usr/local/faces'.
  594. `gnus-picons-news-directory'
  595.      Sub-directory of the faces database containing the icons for
  596.      newsgroups.
  597. `gnus-picons-user-directories'
  598.      List of subdirectories to search in `gnus-picons-database' for user
  599.      faces.  Defaults to `("local" "users" "usenix" "misc/MISC")'.
  600. `gnus-picons-domain-directories'
  601.      List of subdirectories to search in `gnus-picons-database' for
  602.      domain name faces.  Defaults to `("domains")'.  Some people may
  603.      want to add `unknown' to this list.
  604. `gnus-picons-convert-x-face'
  605.      The command to use to convert the `X-Face' header to an X bitmap
  606.      (`xbm').  Defaults to `(format "{ echo '/* Width=48, Height=48
  607.      */'; uncompface; } | icontopbm | pbmtoxbm > %s"
  608.      gnus-picons-x-face-file-name)'
  609. `gnus-picons-x-face-file-name'
  610.      Names a temporary file to store the `X-Face' bitmap in.  Defaults
  611.      to `(format "/tmp/picon-xface.%s.xbm" (user-login-name))'.
  612. `gnus-picons-buffer'
  613.      The name of the buffer that `picons' points to.  Defaults to
  614.      `*Icon Buffer*'.
  615. File: gnus,  Node: Various Various,  Prev: Picons,  Up: Various
  616. Various Various
  617. ===============
  618. `gnus-verbose'
  619.      This variable is an integer between zero and ten.  The higher the
  620.      value, the more messages will be displayed.  If this variable is
  621.      zero, Gnus will never flash any messages, if it is seven (which is
  622.      the default), most important messages will be shown, and if it is
  623.      ten, Gnus won't ever shut up, but will flash so many messages it
  624.      will make your head swim.
  625. `gnus-verbose-backends'
  626.      This variable works the same way as `gnus-verbose', but it applies
  627.      to the Gnus backends instead of Gnus proper.
  628. `nnheader-max-head-length'
  629.      When the backends read straight heads of articles, they all try to
  630.      read as little as possible.  This variable (default `4096')
  631.      specifies the absolute max length the backends will try to read
  632.      before giving up on finding a separator line between the head and
  633.      the body.  If this variable is `nil', there is no upper read
  634.      bound.  If it is `t', the backends won't try to read the articles
  635.      piece by piece, but read the entire articles.  This makes sense
  636.      with some versions of `ange-ftp'.
  637. `nnheader-file-name-translation-alist'
  638.      This is an alist that says how to translate characters in file
  639.      names.  For instance, if `:' is illegal as a file character in
  640.      file names on your system (you OS/2 user you), you could say
  641.      something like:
  642.           (setq nnheader-file-name-translation-alist
  643.                 '((?: . ?_)))
  644.      In fact, this is the default value for this variable on OS/2 and MS
  645.      Windows (phooey) systems.
  646. `gnus-hidden-properties'
  647.      This is a list of properties to use to hide "invisible" text.  It
  648.      is `(invisible t intangible t)' by default on most systems, which
  649.      makes invisible text invisible and intangible.
  650. `gnus-parse-headers-hook'
  651.      A hook called before parsing headers.  It can be used, for
  652.      instance, to gather statistics on the headers fetched, or perhaps
  653.      you'd like to prune some headers.  I don't see why you'd want
  654.      that, though.
  655. File: gnus,  Node: The End,  Next: Appendices,  Prev: Various,  Up: Top
  656. The End
  657. *******
  658.    Well, that's the manual--you can get on with your life now.  Keep in
  659. touch.  Say hello to your cats from me.
  660.    My *ghod*--I just can't stand goodbyes.  Sniffle.
  661.    Ol' Charles Reznikoff said it pretty well, so I leave the floor to
  662.      *Te Deum*
  663.      Not because of victories
  664.      I sing,
  665.      having none,
  666.      but for the common sunshine,
  667.      the breeze,
  668.      the largess of the spring.
  669.      Not for victory
  670.      but for the day's work done
  671.      as well as I was able;
  672.      not for a seat upon the dais
  673.      but at the common table.
  674. File: gnus,  Node: Appendices,  Next: Index,  Prev: The End,  Up: Top
  675. Appendices
  676. **********
  677. * Menu:
  678. * History::                        How Gnus got where it is today.
  679. * Terminology::                    We use really difficult, like, words here.
  680. * Customization::                  Tailoring Gnus to your needs.
  681. * Troubleshooting::                What you might try if things do not work.
  682. * A Programmers Guide to Gnus::    Rilly, rilly technical stuff.
  683. * Emacs for Heathens::             A short introduction to Emacsian terms.
  684. * Frequently Asked Questions::     A question-and-answer session.
  685. File: gnus,  Node: History,  Next: Terminology,  Up: Appendices
  686. History
  687. =======
  688.    GNUS was written by Masanobu UMEDA.  When autumn crept up in '94,
  689. Lars Magne Ingebrigtsen grew bored and decided to rewrite Gnus.
  690.    If you want to investigate the person responsible for this outrage,
  691. you can point your (feh!) web browser to
  692. `http://www.ifi.uio.no/~larsi/'.  This is also the primary distribution
  693. point for the new and spiffy versions of Gnus, and is known as The Site
  694. That Destroys Newsrcs And Drives People Mad.
  695.    During the first extended alpha period of development, the new Gnus
  696. was called "(ding) Gnus".  "(ding)", is, of course, short for "ding is
  697. not Gnus", which is a total and utter lie, but who cares?  (Besides,
  698. the "Gnus" in this abbreviation should probably be pronounced "news" as
  699. UMEDA intended, which makes it a more appropriate name, don't you
  700. think?)
  701.    In any case, after spending all that energy on coming up with a new
  702. and spunky name, we decided that the name was *too* spunky, so we
  703. renamed it back again to "Gnus".  But in mixed case.  "Gnus" vs.
  704. "GNUS".  New vs. old.
  705.    The first "proper" release of Gnus 5 was done in November 1995 when
  706. it was included in the Emacs 19.30 distribution.
  707.    In May 1996 the next Gnus generation (aka.  "September Gnus") was
  708. released under the name "Gnus 5.2".
  709. * Menu:
  710. * Why?::                What's the point of Gnus?
  711. * Compatibility::       Just how compatible is Gnus with GNUS?
  712. * Conformity::          Gnus tries to conform to all standards.
  713. * Emacsen::             Gnus can be run on a few modern Emacsen.
  714. * Contributors::        Oodles of people.
  715. * New Features::        Pointers to some of the new stuff in Gnus.
  716. * Newest Features::     Features so new that they haven't been written yet.
  717. File: gnus,  Node: Why?,  Next: Compatibility,  Up: History
  718.    What's the point of Gnus?
  719.    I want to provide a "rad", "happening", "way cool" and "hep"
  720. newsreader, that lets you do anything you can think of.  That was my
  721. original motivation, but while working on Gnus, it has become clear to
  722. me that this generation of newsreaders really belong in the stone age.
  723. Newsreaders haven't developed much since the infancy of the net.  If the
  724. volume continues to rise with the current rate of increase, all current
  725. newsreaders will be pretty much useless.  How do you deal with
  726. newsgroups that have thousands of new articles each day?  How do you
  727. keep track of millions of people who post?
  728.    Gnus offers no real solutions to these questions, but I would very
  729. much like to see Gnus being used as a testing ground for new methods of
  730. reading and fetching news.  Expanding on UMEDA-san's wise decision to
  731. separate the newsreader from the backends, Gnus now offers a simple
  732. interface for anybody who wants to write new backends for fetching mail
  733. and news from different sources.  I have added hooks for customizations
  734. everywhere I could imagine useful.  By doing so, I'm inviting every one
  735. of you to explore and invent.
  736.    May Gnus never be complete. `C-u 100 M-x hail-emacs'.
  737. File: gnus,  Node: Compatibility,  Next: Conformity,  Prev: Why?,  Up: History
  738. Compatibility
  739. -------------
  740.    Gnus was designed to be fully compatible with GNUS.  Almost all key
  741. bindings have been kept.  More key bindings have been added, of course,
  742. but only in one or two obscure cases have old bindings been changed.
  743.    Our motto is:
  744.                          In a cloud bones of steel.
  745.    All commands have kept their names.  Some internal functions have
  746. changed their names.
  747.    The `gnus-uu' package has changed drastically. *note Decoding
  748. Articles::..
  749.    One major compatibility question is the presence of several summary
  750. buffers.  All variables that are relevant while reading a group are
  751. buffer-local to the summary buffer they belong in.  Although many
  752. important variables have their values copied into their global
  753. counterparts whenever a command is executed in the summary buffer, this
  754. change might lead to incorrect values being used unless you are careful.
  755.    All code that relies on knowledge of GNUS internals will probably
  756. fail.  To take two examples: Sorting `gnus-newsrc-alist' (or changing
  757. it in any way, as a matter of fact) is strictly verboten.  Gnus
  758. maintains a hash table that points to the entries in this alist (which
  759. speeds up many functions), and changing the alist directly will lead to
  760. peculiar results.
  761.    Old hilit19 code does not work at all.  In fact, you should probably
  762. remove all hilit code from all Gnus hooks (`gnus-group-prepare-hook'
  763. and `gnus-summary-prepare-hook').  Gnus provides various integrated
  764. functions for highlighting.  These are faster and more accurate.  To
  765. make life easier for everybody, Gnus will by default remove all hilit
  766. calls from all hilit hooks.  Uncleanliness!  Away!
  767.    Packages like `expire-kill' will no longer work.  As a matter of
  768. fact, you should probably remove all old GNUS packages (and other code)
  769. when you start using Gnus.  More likely than not, Gnus already does
  770. what you have written code to make GNUS do.  (Snicker.)
  771.    Even though old methods of doing things are still supported, only the
  772. new methods are documented in this manual.  If you detect a new method
  773. of doing something while reading this manual, that does not mean you
  774. have to stop doing it the old way.
  775.    Gnus understands all GNUS startup files.
  776.    Overall, a casual user who hasn't written much code that depends on
  777. GNUS internals should suffer no problems.  If problems occur, please
  778. let me know by issuing that magic command `M-x gnus-bug'.
  779. File: gnus,  Node: Conformity,  Next: Emacsen,  Prev: Compatibility,  Up: History
  780. Conformity
  781. ----------
  782.    No rebels without a clue here, ma'am.  We conform to all standards
  783. known to (wo)man.  Except for those standards and/or conventions we
  784. disagree with, of course.
  785. *RFC 822*
  786.      There are no known breaches of this standard.
  787. *RFC 1036*
  788.      There are no known breaches of this standard, either.
  789. *Usenet Seal of Approval*
  790.      Gnus hasn't been formally through the Seal process, but I have read
  791.      through the Seal text and I think Gnus would pass.
  792. *Son-of-RFC 1036*
  793.      We do have some breaches to this one.
  794.     *MIME*
  795.           Gnus does no MIME handling, and this standard-to-be seems to
  796.           think that MIME is the bees' knees, so we have major breakage
  797.           here.
  798.     *X-Newsreader*
  799.           This is considered to be a "vanity header", while I consider
  800.           it to be consumer information.  After seeing so many badly
  801.           formatted articles coming from `tin' and `Netscape' I know
  802.           not to use either of those for posting articles.  I would not
  803.           have known that if it wasn't for the `X-Newsreader' header.
  804.     *References*
  805.           Gnus does line breaking on this header.  I infer from RFC1036
  806.           that being conservative in what you output is not creating
  807.           5000-character lines, so it seems like a good idea to me.
  808.           However, this standard-to-be says that whitespace in the
  809.           `References' header is to be preserved, so...  It doesn't
  810.           matter one way or the other to Gnus, so if somebody tells me
  811.           what The Way is, I'll change it.  Or not.
  812.    If you ever notice Gnus acting non-compliantly with regards to the
  813. texts mentioned above, don't hesitate to drop a note to Gnus Towers and
  814. let us know.
  815. File: gnus,  Node: Emacsen,  Next: Contributors,  Prev: Conformity,  Up: History
  816. Emacsen
  817. -------
  818.    Gnus should work on :
  819.    * Emacs 19.30 and up.
  820.    * XEmacs 19.13 and up.
  821.    * Mule versions based on Emacs 19.30 and up.
  822.    Gnus will absolutely not work on any Emacsen older than that.  Not
  823. reliably, at least.
  824.    There are some vague differences between Gnus on the various
  825. platforms:
  826.    * The mouse-face on Gnus lines under Emacs and Mule is delimited to
  827.      certain parts of the lines while they cover the entire line under
  828.      XEmacs.
  829.    * The same with current-article marking--XEmacs puts an underline
  830.      under the entire summary line while Emacs and Mule are nicer and
  831.      kinder.
  832.    * XEmacs features more graphics--a logo and a toolbar.
  833.    * Citation highlighting us better under Emacs and Mule than under
  834.      XEmacs.
  835.    * Emacs 19.26-19.28 have tangible hidden headers, which can be a bit
  836.      confusing.
  837. File: gnus,  Node: Contributors,  Next: New Features,  Prev: Emacsen,  Up: History
  838. Contributors
  839. ------------
  840.    The new Gnus version couldn't have been done without the help of all
  841. the people on the (ding) mailing list.  Every day for over a year I have
  842. gotten billions of nice bug reports from them, filling me with joy,
  843. every single one of them.  Smooches.  The people on the list have been
  844. tried beyond endurance, what with my "oh, that's a neat idea <type
  845. type>, yup, I'll release it right away <ship off> no wait, that doesn't
  846. work at all <type type>, yup, I'll ship that one off right away <ship
  847. off> no, wait, that absolutely does not work" policy for releases.
  848. Micro$oft--bah.  Amateurs.  I'm *much* worse.  (Or is that "worser"?
  849. "much worser"?  "worsest"?)
  850.    I would like to take this opportunity to thank the Academy for...
  851. oops, wrong show.
  852.    * Masanobu UMEDA The writer of the original GNUS.
  853.    * Per Abrahamsen Custom, scoring, highlighting and SOUP code (as
  854.      well as numerous other things).
  855.    * Luis Fernandes Design and graphics.
  856.    * Wes Hardaker `gnus-picon.el' and the manual section on "picons"
  857.      (*note Picons::.).
  858.    * Brad Miller `gnus-gl.el' and the GroupLens manual section (*note
  859.      GroupLens::.).
  860.    * Sudish Joseph Innumerable bug fixes.
  861.    * Ilja Weis `gnus-topic.el'.
  862.    * Steven L. Baur Lots and lots of bugs detections and fixes.
  863.    * Vladimir Alexiev The refcard and reference booklets.
  864.    * Felix Lee & JWZ I stole some pieces from the XGnus distribution by
  865.      Felix Lee and JWZ.
  866.    * Scott Byer `nnfolder.el' enhancements & rewrite.
  867.    * Peter Mutsaers Orphan article scoring code.
  868.    * Ken Raeburn POP mail support.
  869.    * Hallvard B Furuseth Various bits and pieces, especially dealing
  870.      with .newsrc files.
  871.    * Brian Edmonds `gnus-bbdb.el'.
  872.    * Ricardo Nassif and Mark Borges Proof-reading.
  873.    * Kevin Davidson Came up with the name "ding", so blame him.
  874.    Peter Arius, Stainless Steel Rat, Ulrik Dickow, Jack Vinson, Daniel
  875. Quinlan, Frank D. Cringle, Geoffrey T. Dairiki, Fabrice Popineau and
  876. Andrew Eskilsson have all contributed code and suggestions.
  877. File: gnus,  Node: New Features,  Next: Newest Features,  Prev: Contributors,  Up: History
  878. New Features
  879. ------------
  880.    * The look of all buffers can be changed by setting format-like
  881.      variables (*note Group Buffer Format::. and *note Summary Buffer
  882.      Format::.).
  883.    * Local spool and several NNTP servers can be used at once (*note
  884.      Select Methods::.).
  885.    * You can combine groups into virtual groups (*note Virtual
  886.      Groups::.).
  887.    * You can read a number of different mail formats (*note Getting
  888.      Mail::.).  All the mail backends implement a convenient mail
  889.      expiry scheme (*note Expiring Mail::.).
  890.    * Gnus can use various strategies for gathering threads that have
  891.      lost their roots (thereby gathering loose sub-threads into one
  892.      thread) or it can go back and retrieve enough headers to build a
  893.      complete thread (*note Customizing Threading::.).
  894.    * Killed groups can be displayed in the group buffer, and you can
  895.      read them as well (*note Listing Groups::.).
  896.    * Gnus can do partial group updates--you do not have to retrieve the
  897.      entire active file just to check for new articles in a few groups
  898.      (*note The Active File::.).
  899.    * Gnus implements a sliding scale of subscribedness to groups (*note
  900.      Group Levels::.).
  901.    * You can score articles according to any number of criteria (*note
  902.      Scoring::.).  You can even get Gnus to find out how to score
  903.      articles for you (*note Adaptive Scoring::.).
  904.    * Gnus maintains a dribble buffer that is auto-saved the normal Emacs
  905.      manner, so it should be difficult to lose much data on what you
  906.      have read if your machine should go down (*note Auto Save::.).
  907.    * Gnus now has its own startup file (`.gnus') to avoid cluttering up
  908.      the `.emacs' file.
  909.    * You can set the process mark on both groups and articles and
  910.      perform operations on all the marked items (*note
  911.      Process/Prefix::.).
  912.    * You can grep through a subset of groups and create a group from the
  913.      results (*note Kibozed Groups::.).
  914.    * You can list subsets of groups according to, well, anything (*note
  915.      Listing Groups::.).
  916.    * You can browse foreign servers and subscribe to groups from those
  917.      servers (*note Browse Foreign Server::.).
  918.    * Gnus can fetch articles asynchronously on a second connection to
  919.      the server (*note Asynchronous Fetching::.).
  920.    * You can cache articles locally (*note Article Caching::.).
  921.    * The uudecode functions have been expanded and generalized (*note
  922.      Decoding Articles::.).
  923.    * You can still post uuencoded articles, which was a little-known
  924.      feature of GNUS' past (*note Uuencoding and Posting::.).
  925.    * Fetching parents (and other articles) now actually works without
  926.      glitches (*note Finding the Parent::.).
  927.    * Gnus can fetch FAQs and group descriptions (*note Group
  928.      Information::.).
  929.    * Digests (and other files) can be used as the basis for groups
  930.      (*note Document Groups::.).
  931.    * Articles can be highlighted and customized (*note Customizing
  932.      Articles::.).
  933.    * URLs and other external references can be buttonized (*note
  934.      Article Buttons::.).
  935.    * You can do lots of strange stuff with the Gnus window & frame
  936.      configuration (*note Windows Configuration::.).
  937.    * You can click on buttons instead of using the keyboard (*note
  938.      Buttons::.).
  939.    * Gnus can use NoCeM files to weed out spam (*note NoCeM::.).
  940.    This is, of course, just a *short* overview of the *most* important
  941. new features.  No, really.  There are tons more.  Yes, we have feeping
  942. creaturism in full effect, but nothing too gratuitous, I would hope.
  943. File: gnus,  Node: Newest Features,  Prev: New Features,  Up: History
  944. Newest Features
  945. ---------------
  946.    Also known as the "todo list".  Sure to be implemented before the
  947. next millennium.
  948.    Be afraid.  Be very afraid.
  949.    * Native MIME support is something that should be done.
  950.    * A better and simpler method for specifying mail composing methods.
  951.    * Allow posting through mail-to-news gateways.
  952.    * Really do unbinhexing.
  953.    And much, much, much more.  There is more to come than has already
  954. been implemented.  (But that's always true, isn't it?)
  955.    `<URL:http://www.ifi.uio.no/~larsi/sgnus/todo>' is where the actual
  956. up-to-the-second todo list is located, so if you're really curious, you
  957. could point your Web browser over that-a-way.
  958.